home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / Graphic Gems I, II & III (C_C++) / Graphics Gems C Code.sea / GemsI / Src / 2DClip / box.h < prev    next >
Text File  |  1992-06-16  |  186b  |  14 lines

  1.  
  2. /* 
  3.  * file box.h
  4.  *    a short include file is better then no include file
  5.  */
  6. typedef    struct    {        /* guess what this is        */
  7.     long    _lowx;
  8.     long    _lowy;
  9.     long    _highx;
  10.     long    _highy;
  11. } BOX;
  12.  
  13.  
  14.